/**
 * User: 441708294@qq.com 红星
 * Date: 2014-11-22
 * Time: 14:17
 */

/*
===================
初始化【请勿修改】
===================
*/
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
} */

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

a {
  color: blue;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a img {
  border: none;
}

label {
  cursor: pointer;
}

input,textarea,select,button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/*
===================
清除浮动【请勿修改】
>>	cl	作用于父元素
避免因子元素浮动而导致的父元素高度缺失能问题
===================
*/
.cl:after{
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.cl{
	zoom:1;
}

.cl:after {
  clear: both;
  content: " ";
  display: table;
}

/*
===================
左右浮动【请勿修改】
>> l  向左浮动
>> r  向右浮动
===================
*/
.l {
  float: left;
}
.r{
  float: right;
}

/*
===================
显，隐元素【请勿修改】
>> show 显示元素
>> hide 隐藏元素
*/
.show {
  display: block;
}
.hide {
  display: none;
}